Running the application

1. Before the first launch

Make sure you have Python 3.12.0 installed on your computer. If yes, you need to install the required packages. To do this, run the following command in terminal inside the project directory:

pip install -r requirements.txt  

Make the migrations and migrate the database:

python manage.py makemigrations  
python manage.py migrate  

To create superuser:

python manage.py createsuperuser  

2. Launching the application

To run the application run the following command in terminal inside the project directory:

python manage.py runserver